/* general styles */
html {
    background-color: #785C48;
    color: #DDCFC4;
    font-family: "Glegoo", serif;
}

body{
    max-width: 830px;
    margin: auto;
}

.container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(10%);
    max-width: 830px;
    text-align: center;
}

p{
    max-width: 830px;
    text-align: center;
}

.div1 {
    font-size: 15px;
    line-height: 22px;
    animation: fadeIn 5s ease-in forwards;
    animation-delay: 3s;
}

.div2 {
    font-size: 18px;
    line-height: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 5s ease-in forwards;
    animation-delay: 3s;
}

.div3 {
    font-size: 20px;
    line-height: 25px;
    transform: rotateX('-180');
    transform: rotateX(180deg);
    color: #CCB29E;
}

/* main header */
.MainHeader {
    text-align: center;
    font-style: italic;
    margin-top: 50px;
}

/* Nav */
.Nav {
    position: sticky;
    text-align: center;
}

.Nav a {
    color: #Dcc4b4;
    text-decoration: none;
    font-size: 10px;
    font-family: "DM Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 100;
    font-style: normal;
}

.Nav-list {
    list-style-type: none;
    padding: 10px;
}

.Nav-item {
    display: inline-block;
    padding-left: 5px;
    padding-right: 5px;
    padding-bottom: 3px;
    margin-left: 15px;
    margin-right: 15px;
    border: #Dcc4b4 solid 1px;
    border-radius: 20px;
}

#home {
    background-color: #6a5444;
    border: #6a5444 solid 1px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}